home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
jovept1.arc
/
GCSEC.ASM
< prev
next >
Wrap
Assembly Source File
|
1985-05-30
|
384b
|
26 lines
;gcsec.asm
include model.h
include prologue.h
public gcsec
if @bigmodel
gcsec proc far
mov ah,2ch
int 21h
mov ax,dx
ret
else
gcsec proc near
mov ah,2ch
int 21h
mov ax,dx
ret
endif
gcsec endp
include epilogue.h
end